home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Developer's Kit 1996
/
Delphi Developer's Kit 1996.iso
/
power
/
wordapi
/
testexe.pas
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Pascal/Delphi Source File
|
1995-12-22
|
315 b
|
16 lines
program TestExe;
{ call WinWord from an EXE }
{ be sure to $DEFINE USE_SENDMESSAGE (see CAPILIB.PAS) }
USES
WinTypes, WinProcs,
{$IFDEF VER70} Strings, {$ELSE Delphi} SysUtils, {$ENDIF}
WdCmds, WdFid, CapiLib;
{$I TEST.INC} { see TEST.INC for details ;-}
BEGIN {** MAIN **}
Test1;
END.